home *** CD-ROM | disk | FTP | other *** search
/ Creative Computers / Creative Computers CD-ROM, Volume 1 (Legendary Design Technologies, Inc.)(1994).iso / shareware / menu / addtools_1.11 / mtcopy < prev   
AmigaDOS Script File  |  1994-11-17  |  550b  |  26 lines

  1. .KEY FROM/A,TO/A
  2.  
  3. ;
  4. ; Example script to execute a multitasking copy from Workbench using AddTools
  5. ; By Alessandro Sala © 1993
  6. ; Usage: Copy this file into your S: volume; select the source icon, the
  7. ;    destination icon (if this is a file, only its path will be
  8. ;    considered) and choose Copy from the Tools menu.
  9. ;
  10.  
  11. .BRA {
  12. .KET }
  13.  
  14. list >T:mtc_destp "{TO}" lformat="%P"
  15. set <T:mtc_destp >NIL: destP ?
  16.  
  17. delete >NIL: T:mtc_destp
  18.  
  19. if exists "{FROM}"
  20.     copy FROM "{FROM}" TO "$destP"
  21. endif
  22.  
  23. if exists "{FROM}.info"
  24.     copy FROM "{FROM}.info" TO "$destP"
  25. endif
  26.